home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Data 2002 May
/
CD Rom Data Mayıs 2002.iso
/
Freeware
/
Blitz Basic
/
data1.cab
/
Support
/
help
/
beginners
/
Examples
/
if then1.bb
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-04-10
|
312 b
|
11 lines
.start
question$ = Input ("Shall I tell you the meaning of life yes/no? ")
If question$ = "no" Then Print "Alright, Then I won't":Goto Leave
If question$ = "yes" Then Print "42":Goto Leave
If question$ <> "yes" Or "no" Then Goto start
End
.Leave
Print "Press ESC to Exit"
Repeat
VWait
Until KeyHit(1)